home *** CD-ROM | disk | FTP | other *** search
/ Resource Library: Multimedia / Resource Library: Multimedia.iso / hypertxt / msdos / hydos10 / goto < prev    next >
Text File  |  1991-04-14  |  624b  |  20 lines

  1.                                     GOTO
  2.             Transfers control of a batch file to a labelled line
  3.  
  4. The command after the line containing the appropriate label is executed.
  5. The label cannot be on a line with any command.
  6.  
  7. COMMAND TYPE: Internal (batch)          VERSION: 2.0 and up
  8.  
  9. USE: GOTO :label
  10.  
  11. In a batch file, a label is a word preceded by a colon (:).  These
  12. lines are ignored when the batch file is executed.
  13.  
  14. EXAMPLE:  :begin
  15.            format a: /s
  16.            if errorlevel 0 goto end
  17.            echo An error occurred during formatting
  18.           :end
  19.            echo End of batch file
  20.